home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / DOWHILE.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  417b  |  26 lines

  1.                               /* Chapter 3 - Program 2 - DOWHILE.C */
  2. /* This is an example of a do-while loop */
  3.  
  4. void main()
  5. {
  6. int i;
  7.  
  8.    i = 0;
  9.    do {
  10.       printf("The value of i is now %d\n", i);
  11.       i = i + 1;
  12.    } while (i < 5);
  13. }
  14.  
  15.  
  16.  
  17. /* Result of execution
  18.  
  19. The value of i is now 0
  20. The value of i is now 1
  21. The value of i is now 2
  22. The value of i is now 3
  23. The value of i is now 4
  24.  
  25. */
  26.